home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / os2 / octa209s.zip / octave-2.09 / src / det.cc < prev    next >
C/C++ Source or Header  |  1996-11-03  |  2KB  |  130 lines

  1. /*
  2.  
  3. Copyright (C) 1996 John W. Eaton
  4.  
  5. This file is part of Octave.
  6.  
  7. Octave is free software; you can redistribute it and/or modify it
  8. under the terms of the GNU General Public License as published by the
  9. Free Software Foundation; either version 2, or (at your option) any
  10. later version.
  11.  
  12. Octave is distributed in the hope that it will be useful, but WITHOUT
  13. ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14. FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15. for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with Octave; see the file COPYING.  If not, write to the Free
  19. Software Foundation, 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  20.  
  21. */
  22.  
  23. #ifdef HAVE_CONFIG_H
  24. #include <config.h>
  25. #endif
  26.  
  27. #include "CmplxDET.h"
  28. #include "dbleDET.h"
  29.  
  30. #include "defun-dld.h"
  31. #include "error.h"
  32. #include "gripes.h"
  33. #include "help.h"
  34. #include "oct-obj.h"
  35. #include "utils.h"
  36.  
  37. DEFUN_DLD (det, args, ,
  38.   "det (X): determinant of a square matrix")
  39. {
  40.   octave_value_list retval;
  41.  
  42.   int nargin = args.length ();
  43.  
  44.   if (nargin != 1)
  45.     {
  46.       print_usage ("det");
  47.       return retval;
  48.     }
  49.  
  50.   octave_value arg = args(0);
  51.     
  52.   int nr = arg.rows ();
  53.   int nc = arg.columns ();
  54.  
  55.   if (nr == 0 && nc == 0)
  56.     {
  57.       retval = 1.0;
  58.       return retval;
  59.     }
  60.  
  61.   int arg_is_empty = empty_arg ("det", nr, nc);
  62.   if (arg_is_empty < 0)
  63.     return retval;
  64.   if (arg_is_empty > 0)
  65.     return Matrix (1, 1, 1.0);
  66.  
  67.   if (nr != nc)
  68.     {
  69.       gripe_square_matrix_required ("det");
  70.       return retval;
  71.     }
  72.  
  73.   if (arg.is_real_type ())
  74.     {
  75.       Matrix m = arg.matrix_value ();
  76.  
  77.       if (! error_state)
  78.     {
  79.       int info;
  80.       double rcond = 0.0;
  81.  
  82.       DET det = m.determinant (info, rcond);
  83.  
  84.       double d = 0.0;
  85.  
  86.       if (info == -1)
  87.         warning ("det: matrix singular to machine precision, rcond = %g",
  88.              rcond);
  89.       else
  90.         d = det.value ();
  91.  
  92.       retval = d;
  93.     }
  94.     }
  95.   else if (arg.is_complex_type ())
  96.     {
  97.       ComplexMatrix m = arg.complex_matrix_value ();
  98.  
  99.       if (! error_state)
  100.     {
  101.       int info;
  102.       double rcond = 0.0;
  103.  
  104.       ComplexDET det = m.determinant (info, rcond);
  105.  
  106.       Complex c = 0.0;
  107.  
  108.       if (info == -1)
  109.         warning ("det: matrix singular to machine precision, rcond = %g",
  110.              rcond);
  111.       else
  112.         c = det.value ();
  113.  
  114.       retval = c;
  115.     }
  116.     }
  117.   else
  118.     {
  119.       gripe_wrong_type_arg ("det", arg);
  120.     }
  121.  
  122.   return retval;
  123. }
  124.  
  125. /*
  126. ;;; Local Variables: ***
  127. ;;; mode: C++ ***
  128. ;;; End: ***
  129. */
  130.